home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / applications / wp / xes131.lha / XES / REXX / AddLibraries.xdme next >
Encoding:
Text File  |  1994-12-23  |  636 b   |  21 lines

  1. /* AddLibraries.xdme */
  2. /* This adds the libraries used by XES. */
  3.  
  4. if exists("libs:rexxsupport.library") then do
  5.     if ~show("L","rexxsupport.library") then
  6.         call addlib("rexxsupport.library",0,-30,0)
  7. end
  8.     else say "You need RexxSupport.library"
  9.  
  10. if exists("libs:rexxreqtools.library") then do
  11.     if ~show("L","rexxreqtools.library") then
  12.         call addlib("rexxreqtools.library",0,-30)
  13. end
  14.     else say "You need RexxReqTools.library"
  15.  
  16. if exists("libs:rexxarplib.library") then do
  17.     if ~show("L","rexxarplib.library") then
  18.         call addlib("rexxarplib.library",0,-30)
  19. end
  20.     else say "You need RexxArpLib.library"
  21.